home *** CD-ROM | disk | FTP | other *** search
/ Introduction to 3D Game …ogramming with DirectX 12 / Introduction-to-3D-Game-Programming-with-DirectX-12.ISO / Code.Textures / Chapter 4 Direct3D Initialization / Init Direct3D / Init Direct3D.vcxproj < prev    next >
Extensible Markup Language  |  2016-03-02  |  8KB  |  156 lines

  1. ∩╗┐<?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3.   <ItemGroup Label="ProjectConfigurations">
  4.     <ProjectConfiguration Include="Debug|Win32">
  5.       <Configuration>Debug</Configuration>
  6.       <Platform>Win32</Platform>
  7.     </ProjectConfiguration>
  8.     <ProjectConfiguration Include="Debug|x64">
  9.       <Configuration>Debug</Configuration>
  10.       <Platform>x64</Platform>
  11.     </ProjectConfiguration>
  12.     <ProjectConfiguration Include="Release|Win32">
  13.       <Configuration>Release</Configuration>
  14.       <Platform>Win32</Platform>
  15.     </ProjectConfiguration>
  16.     <ProjectConfiguration Include="Release|x64">
  17.       <Configuration>Release</Configuration>
  18.       <Platform>x64</Platform>
  19.     </ProjectConfiguration>
  20.   </ItemGroup>
  21.   <PropertyGroup Label="Globals">
  22.     <ProjectGuid>{C4680F18-E037-4881-A760-CF9AC4C668C5}</ProjectGuid>
  23.     <Keyword>Win32Proj</Keyword>
  24.     <RootNamespace>InitDirect3D</RootNamespace>
  25.     <WindowsTargetPlatformVersion>10.0.10240.0</WindowsTargetPlatformVersion>
  26.   </PropertyGroup>
  27.   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  28.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  29.     <ConfigurationType>Application</ConfigurationType>
  30.     <UseDebugLibraries>true</UseDebugLibraries>
  31.     <PlatformToolset>v140</PlatformToolset>
  32.     <CharacterSet>Unicode</CharacterSet>
  33.   </PropertyGroup>
  34.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  35.     <ConfigurationType>Application</ConfigurationType>
  36.     <UseDebugLibraries>true</UseDebugLibraries>
  37.     <PlatformToolset>v140</PlatformToolset>
  38.     <CharacterSet>Unicode</CharacterSet>
  39.   </PropertyGroup>
  40.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  41.     <ConfigurationType>Application</ConfigurationType>
  42.     <UseDebugLibraries>false</UseDebugLibraries>
  43.     <PlatformToolset>v140</PlatformToolset>
  44.     <WholeProgramOptimization>true</WholeProgramOptimization>
  45.     <CharacterSet>Unicode</CharacterSet>
  46.   </PropertyGroup>
  47.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  48.     <ConfigurationType>Application</ConfigurationType>
  49.     <UseDebugLibraries>false</UseDebugLibraries>
  50.     <PlatformToolset>v140</PlatformToolset>
  51.     <WholeProgramOptimization>true</WholeProgramOptimization>
  52.     <CharacterSet>Unicode</CharacterSet>
  53.   </PropertyGroup>
  54.   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  55.   <ImportGroup Label="ExtensionSettings">
  56.   </ImportGroup>
  57.   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  58.     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  59.   </ImportGroup>
  60.   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
  61.     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  62.   </ImportGroup>
  63.   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  64.     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  65.   </ImportGroup>
  66.   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
  67.     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  68.   </ImportGroup>
  69.   <PropertyGroup Label="UserMacros" />
  70.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  71.     <LinkIncremental>true</LinkIncremental>
  72.   </PropertyGroup>
  73.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  74.     <LinkIncremental>true</LinkIncremental>
  75.   </PropertyGroup>
  76.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  77.     <LinkIncremental>false</LinkIncremental>
  78.   </PropertyGroup>
  79.   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  80.     <LinkIncremental>false</LinkIncremental>
  81.   </PropertyGroup>
  82.   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  83.     <ClCompile>
  84.       <PrecompiledHeader>
  85.       </PrecompiledHeader>
  86.       <WarningLevel>Level3</WarningLevel>
  87.       <Optimization>Disabled</Optimization>
  88.       <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  89.     </ClCompile>
  90.     <Link>
  91.       <SubSystem>Windows</SubSystem>
  92.       <GenerateDebugInformation>true</GenerateDebugInformation>
  93.     </Link>
  94.   </ItemDefinitionGroup>
  95.   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  96.     <ClCompile>
  97.       <PrecompiledHeader>
  98.       </PrecompiledHeader>
  99.       <WarningLevel>Level3</WarningLevel>
  100.       <Optimization>Disabled</Optimization>
  101.       <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  102.     </ClCompile>
  103.     <Link>
  104.       <SubSystem>Windows</SubSystem>
  105.       <GenerateDebugInformation>true</GenerateDebugInformation>
  106.     </Link>
  107.   </ItemDefinitionGroup>
  108.   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  109.     <ClCompile>
  110.       <WarningLevel>Level3</WarningLevel>
  111.       <PrecompiledHeader>
  112.       </PrecompiledHeader>
  113.       <Optimization>MaxSpeed</Optimization>
  114.       <FunctionLevelLinking>true</FunctionLevelLinking>
  115.       <IntrinsicFunctions>true</IntrinsicFunctions>
  116.       <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  117.     </ClCompile>
  118.     <Link>
  119.       <SubSystem>Windows</SubSystem>
  120.       <GenerateDebugInformation>true</GenerateDebugInformation>
  121.       <EnableCOMDATFolding>true</EnableCOMDATFolding>
  122.       <OptimizeReferences>true</OptimizeReferences>
  123.     </Link>
  124.   </ItemDefinitionGroup>
  125.   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  126.     <ClCompile>
  127.       <WarningLevel>Level3</WarningLevel>
  128.       <PrecompiledHeader>
  129.       </PrecompiledHeader>
  130.       <Optimization>MaxSpeed</Optimization>
  131.       <FunctionLevelLinking>true</FunctionLevelLinking>
  132.       <IntrinsicFunctions>true</IntrinsicFunctions>
  133.       <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  134.     </ClCompile>
  135.     <Link>
  136.       <SubSystem>Windows</SubSystem>
  137.       <GenerateDebugInformation>true</GenerateDebugInformation>
  138.       <EnableCOMDATFolding>true</EnableCOMDATFolding>
  139.       <OptimizeReferences>true</OptimizeReferences>
  140.     </Link>
  141.   </ItemDefinitionGroup>
  142.   <ItemGroup>
  143.     <ClCompile Include="..\..\Common\d3dApp.cpp" />
  144.     <ClCompile Include="..\..\Common\d3dUtil.cpp" />
  145.     <ClCompile Include="..\..\Common\GameTimer.cpp" />
  146.     <ClCompile Include="InitDirect3DApp.cpp" />
  147.   </ItemGroup>
  148.   <ItemGroup>
  149.     <ClInclude Include="..\..\Common\d3dApp.h" />
  150.     <ClInclude Include="..\..\Common\d3dUtil.h" />
  151.     <ClInclude Include="..\..\Common\GameTimer.h" />
  152.   </ItemGroup>
  153.   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  154.   <ImportGroup Label="ExtensionTargets">
  155.   </ImportGroup>
  156. </Project>